home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / ds5000.md / devStdFBInt.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  36 lines

  1. /*
  2.  * devStdFBInt.h --
  3.  *
  4.  *    Declarations of the standard frame buffer device.
  5.  *
  6.  * Copyright 1991 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that this copyright
  10.  * notice appears in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/ds5000.md/devStdFBInt.h,v 1.1 91/03/19 11:02:37 jhh Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _DEVSTDFBINT
  19. #define _DEVSTDFBINT
  20.  
  21. #include <fs.h>
  22.  
  23. extern    ReturnStatus    DevStdFBOpen _ARGS_ ((Fs_Device *devicePtr, 
  24.                 int useFlags, Fs_NotifyToken token,
  25.                 int *flagsPtr));
  26. extern    ReturnStatus    DevStdFBMMap _ARGS_ ((Fs_Device *devicePtr, 
  27.                 Address startAddr, int length, int offset,
  28.                 Address *newAddrPtr));
  29. extern    ReturnStatus    DevStdFBIOControl _ARGS_ ((Fs_Device *devicePtr, 
  30.                 Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  31. extern    ReturnStatus    DevStdFBClose _ARGS_ ((Fs_Device *devicePtr, 
  32.                 int useFlags, int openCount, int writerCount));
  33.  
  34. #endif /* _DEVSTDFBINT */
  35.  
  36.